home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / misc / st_plugins / additionalplugins.readme < prev    next >
Text File  |  1999-11-29  |  3KB  |  118 lines

  1. Documentation of the two new PlugIns
  2.  
  3.  
  4. 1. Bookmarks-PlugIn
  5. ===================
  6.  
  7.    With this PlugIn you can integrate the bookmark tree of your favourite
  8.    Web-Browser in the Start-Menu. That means if you want to jump to
  9.    another link you just chose one out of the Start-Menu and magic
  10.    ARexx-Communications make the browser contact the link.
  11.  
  12.    As I wanted it to be as flexible as possible a few configuration
  13.    options have to be specified:
  14.  
  15.  
  16.    AREXXCONFIG/A
  17.    -------------
  18.  
  19.    This string defines some communication issues between ScreenTab and
  20.    the browser in the following format:
  21.  
  22.    <Port>,<Cmd1>,<Cmd2>
  23.  
  24.    Port = this is the name of the ARexx-Port of the Web-Browser
  25.    Cmd1 = this is the ARexx-Command for opening a new window in the
  26.           browser including the link where to jump
  27.    Cmd2 = this is the ARexx-Command for going to another URL
  28.  
  29.    I've tried the following strings with my configuration (%s is
  30.    dynamically replaced by the chosen URL):
  31.  
  32.    IBrowse: "IBROWSE,newwindow %s,gotourl %s"
  33.    Voyager: "VOYAGER,openurl %s new,openurl %s"
  34.    AWeb:    ???
  35.  
  36.  
  37.    FILE/A
  38.    ------
  39.  
  40.    The file containing the bookmarks (for IBrowse-Users: it's the
  41.    file ibrowse-hotlist.html).
  42.  
  43.  
  44.    STARTUP
  45.    -------
  46.  
  47.    This is an ARexx-Script which will be started if ScreenTab can't find
  48.    the port of the browser (= browser hasn't been started yet).
  49.  
  50.    Example for IBrowse:
  51.  
  52.    /* ARexx-Script to launch IBrowse */
  53.  
  54.    address 'command'
  55.  
  56.    if ~show("p","IBROWSE") then do
  57.       'run Work:Internet/IBrowse/IBrowse'
  58.    end
  59.  
  60.  
  61.    LINKIMAGE
  62.    ---------
  63.  
  64.    If an image should be displayed in front of the link then enter here
  65.    the name/path of the image (if IMAGEDIR-Tooltype is set the name of
  66.    the image is sufficient)
  67.  
  68.  
  69.    DELAY/N
  70.    -------
  71.  
  72.    If the browser is launched via the STARTUP-Script it is necessary to
  73.    wait until the specified port is available. Here you can enter the time
  74.    after which this waiting delay is cancelled. The value depends on how
  75.    fast is the launching process of the browser, normally 10 to 15 seconds
  76.    is sufficient (or are you using a floppy disk ?).
  77.  
  78.  
  79.    NEWWINDOW/S
  80.    -----------
  81.  
  82.    When this switch is set every chosen link gets a new browser window;
  83.    otherwise the active window will be used.
  84.  
  85.  
  86.  
  87. 2. WipeDir
  88. ==========
  89.  
  90.    Well, quite self-explaining I think. It's simple but useful if
  91.    you want to delete the files and sub-dirs quickly after checking out
  92.    an archive.
  93.  
  94. !! PLEASE BE CAREFUL WITH THIS PLUGIN !!! Especially when you've turned
  95. !! off the confirmation. It REALLY wipes the directory !!! So don't
  96. !! specify SYS: or Work: as the directory unless you have a good backup
  97. !! tool :)
  98.  
  99.    Parameters:
  100.  
  101.    DIRECTORY/A
  102.    -----------
  103.  
  104.    Directory to be wiped.
  105.  
  106.  
  107.    CONFIRM/S
  108.    ---------
  109.  
  110.    Ask the user for confirmation before wiping the directory.
  111.  
  112.  
  113.    PROTECTED/S
  114.    -----------
  115.  
  116.    Also delete protected files (those with protection bit set).
  117.  
  118.